diff options
| author | Matt Brubeck <mbrubeck@limpet.net> | 2014-09-24 09:58:06 -0700 |
|---|---|---|
| committer | Matt Brubeck <mbrubeck@limpet.net> | 2014-09-24 09:58:06 -0700 |
| commit | 88a8def0a373348e18cf4ce98f256da063618be1 (patch) | |
| tree | 3b8e66fcf9f50666d40edd3c07271490cf6c3d05 /src | |
| parent | 5366cfecf3fd4e3b589c140b85eee4bb4b35d97c (diff) | |
| download | rust-88a8def0a373348e18cf4ce98f256da063618be1.tar.gz rust-88a8def0a373348e18cf4ce98f256da063618be1.zip | |
Fix typo in unsafe guide (s/xlibrary/library)
Diffstat (limited to 'src')
| -rw-r--r-- | src/doc/guide-unsafe.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/guide-unsafe.md b/src/doc/guide-unsafe.md index 8c67634d57a..65d424f8ba4 100644 --- a/src/doc/guide-unsafe.md +++ b/src/doc/guide-unsafe.md @@ -496,7 +496,7 @@ pub extern fn main(argc: int, argv: *const *const u8) -> int { The compiler currently makes a few assumptions about symbols which are available in the executable to call. Normally these functions are provided by the standard -xlibrary, but without it you must define your own. +library, but without it you must define your own. The first of these two functions, `stack_exhausted`, is invoked whenever stack overflow is detected. This function has a number of restrictions about how it |
