diff options
| author | Laurenz <laurmaedje@gmail.com> | 2020-10-03 18:15:09 +0200 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2020-10-03 18:15:09 +0200 |
| commit | 54e0da59e37c25f5b9f9cd8fbe162184debe521b (patch) | |
| tree | 699cdb8e05dd2867a185bd2f662764f107efecb0 /src/syntax/span.rs | |
| parent | 91d14d2a221f619738e4534c1b4266633ce5789d (diff) | |
Small documentation fixes 🧾
Diffstat (limited to 'src/syntax/span.rs')
| -rw-r--r-- | src/syntax/span.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/syntax/span.rs b/src/syntax/span.rs index 09e5f02c..e9e1021c 100644 --- a/src/syntax/span.rs +++ b/src/syntax/span.rs @@ -83,7 +83,7 @@ impl<T> Spanned<T> { } impl<T> Spanned<Option<T>> { - /// Swap the spanned and option. + /// Swap the spanned and the option. pub fn transpose(self) -> Option<Spanned<T>> { let Spanned { v, span } = self; v.map(|v| v.span_with(span)) |
