<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rust/tests/ui/parser/misspelled-keywords/while-loop.stderr, branch try-perf</title>
<subtitle>https://github.com/rust-lang/rust
</subtitle>
<id>http://git.dreamy.place/mirrors/rust/atom?h=try-perf</id>
<link rel='self' href='http://git.dreamy.place/mirrors/rust/atom?h=try-perf'/>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/'/>
<updated>2025-02-10T20:21:39+00:00</updated>
<entry>
<title>Show diff suggestion format on verbose replacement</title>
<updated>2025-02-10T20:21:39+00:00</updated>
<author>
<name>Esteban Küber</name>
<email>esteban@kuber.com.ar</email>
</author>
<published>2024-07-09T22:30:26+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=f0845adb0c1b7a7fa1bef73e749b2d7e1d7f374d'/>
<id>urn:sha1:f0845adb0c1b7a7fa1bef73e749b2d7e1d7f374d</id>
<content type='text'>
```
error[E0610]: `{integer}` is a primitive type and therefore doesn't have fields
  --&gt; $DIR/attempted-access-non-fatal.rs:7:15
   |
LL |     let _ = 2.l;
   |               ^
   |
help: if intended to be a floating point literal, consider adding a `0` after the period and a `f64` suffix
   |
LL -     let _ = 2.l;
LL +     let _ = 2.0f64;
   |
```
</content>
</entry>
<entry>
<title>Add Suggestions for Misspelled Keywords</title>
<updated>2024-09-07T03:07:45+00:00</updated>
<author>
<name>Veera</name>
<email>sveera.2001@gmail.com</email>
</author>
<published>2024-09-02T16:43:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=14e86eb7d93ebda57d2008ae37e88ac2a0604570'/>
<id>urn:sha1:14e86eb7d93ebda57d2008ae37e88ac2a0604570</id>
<content type='text'>
This PR detects misspelled keywords using two heuristics:

1. Lowercasing the unexpected identifier.
2. Using edit distance to find a keyword similar to the unexpected identifier.

However, it does not detect each and every misspelled keyword to
minimize false positives and ambiguities. More details about the
implementation can be found in the comments.
</content>
</entry>
<entry>
<title>Update Tests</title>
<updated>2024-09-02T15:45:51+00:00</updated>
<author>
<name>Veera</name>
<email>sveera.2001@gmail.com</email>
</author>
<published>2024-09-02T02:27:43+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=265cd14cd46e740bf2ac0fa68f0eeafcd83984e0'/>
<id>urn:sha1:265cd14cd46e740bf2ac0fa68f0eeafcd83984e0</id>
<content type='text'>
</content>
</entry>
</feed>
