fixup! Wrap the LineColumn struct when re-exporting from proc-macro
diff --git a/src/lib.rs b/src/lib.rs
index d0660d4..1127e69 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -135,9 +135,6 @@
     }
 }
 
-// NOTE: We can't easily wrap LineColumn right now, as the version in proc-macro
-// doesn't actually expose the internal `line` and `column` fields, making it
-// mostly useless.
 pub struct LineColumn {
     pub line: usize,
     pub column: usize,