Skip to content

Commit 45a815d

Browse files
authored
Fix typo in "unimplemented!" in the style guide (#174)
See title. Signed-off-by: lumiscosity <[email protected]>
1 parent 9974592 commit 45a815d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/contributing/style-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ When dealing with Rust's `std::sync::Mutex`or other concurrency primitives which
102102

103103
### `todo!()` and `unimplemented!()`
104104

105-
In code that is reachable via execution, do not use `todo!` or `unimplemnted!`.
105+
In code that is reachable via execution, do not use `todo!` or `unimplemented!`.
106106
These macros will cause Servo to panic and normal web content shouldn't cause Servo to panic.
107107
Intead, try to make these kind of cases unreachable and return proper error values or simply have the code do nothing instead.
108108

0 commit comments

Comments
 (0)