Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
60 commits
Select commit Hold shift + click to select a range
e143986
std: thread: Return error if setting thread stack size fails
Gelbpunkt Jul 20, 2025
c0eaad7
run spellcheck as a tidy extra check in ci
lolbinarycat Aug 6, 2025
002ea81
fix some typos in std::sync and in the compiler
lolbinarycat Aug 8, 2025
814dec7
tidy now installs typos-cli as-needed via cargo
lolbinarycat Aug 8, 2025
315fb73
ensure_version_or_cargo_install: reinstate version check
lolbinarycat Aug 8, 2025
b2b36e7
ensure_version_or_cargo_install: logging and assert
lolbinarycat Aug 8, 2025
1a288a8
tidy: add better error reporting for if typos can't be run
lolbinarycat Aug 8, 2025
841448b
ensure_version_or_cargo_install: don't hardcode path to cargo
lolbinarycat Aug 8, 2025
cedad9c
tidy: run typos check in src root, not current dir
lolbinarycat Aug 9, 2025
715bbe0
fix even more typos
lolbinarycat Aug 9, 2025
ba350ff
fix: re-enable self-assignment
notJoon Aug 10, 2025
de13718
test: Add rustdoc test for enum negative overflow
eval-exec Aug 10, 2025
20a134f
rustdoc: Use `discr`s `Display` impl to render the value with the cor…
eval-exec Aug 10, 2025
3252f85
tidy spellcheck improvments based on code review
lolbinarycat Aug 10, 2025
cd4676c
Turn _span into _trace as trace span name
Stypox Aug 11, 2025
6603fe1
Port `#[allow_internal_unsafe]` to the new attribute system (attempt 2)
scrabsha Aug 3, 2025
d523b9f
Support using #[unstable_feature_bound] on trait
tiif Aug 11, 2025
9a8facb
Update rustc dev guide
tiif Aug 11, 2025
bcf87e4
Update error message
tiif Aug 11, 2025
0ccbe8f
std: sys: pal: uefi: Overhaul Time
Ayush1325 Apr 14, 2025
35906ea
std: sys: pal: uefi: tests: Add systemtime tests
Ayush1325 May 24, 2025
79a134a
Document compiler and stdlib in stage1 in `pr-check-2` CI job
Kobzol Aug 11, 2025
c022ed9
don't emit rustdoc::broken_intra_doc_links for stuff like [!NOTE]
lolbinarycat Aug 4, 2025
189f264
Allow attr entries to declare list of alternatives for `List` and `Na…
estebank Aug 11, 2025
625143b
Add link to docs on malformed attributes
estebank Aug 11, 2025
6bb29af
Add link to invalid `repr` error
estebank Aug 11, 2025
413ca5d
fix tests
estebank Aug 11, 2025
19df24b
Make explicit guarantees about `Vec`’s allocator
SabrinaJewson Aug 11, 2025
3200d1f
Stabilize `sse4a` and `tbm` target features
sayantn Jul 27, 2025
50d8b80
Update books
rustbot Aug 11, 2025
32ee26c
Add more docs to templates for attrs with incorrect arguments
estebank Aug 11, 2025
adccb8d
Rework `NameValueStr`
estebank Aug 11, 2025
45e2449
Respond to review comments
SabrinaJewson Aug 11, 2025
184e8bd
tidy: add logging for when a tool is done building with cargo
lolbinarycat Aug 11, 2025
1dc37df
Simplify `add_apple_sdk`
madsmtm Aug 11, 2025
928dd11
fix clippy test
estebank Aug 11, 2025
1cc44bf
Pass Apple SDK root to compiler driver via SDKROOT env var
madsmtm Aug 11, 2025
f4a9110
Only warn when invoking xcrun
madsmtm Aug 11, 2025
1d13162
Always attempt to invoke xcrun to get the Apple SDK
madsmtm Aug 11, 2025
39c5d6d
Factor out InherentImplCannotUnsafe
camsteffen Jul 30, 2025
fa73390
Move trait impl modifier errors to parsing
camsteffen Jul 30, 2025
3aa0ac0
Tweak trait modifier errors
camsteffen Jul 30, 2025
5bc23ce
Extract ast TraitImplHeader
camsteffen Jul 22, 2025
bf266dc
Propagate TraitImplHeader to hir
camsteffen Jul 24, 2025
8aabfb0
Rollup merge of #131477 - madsmtm:sdkroot-via-env-var, r=nnethercote
fmease Aug 11, 2025
43e7a8c
Rollup merge of #139806 - Ayush1325:uefi-systemtime, r=joboet
fmease Aug 11, 2025
f2a8cde
Rollup merge of #144210 - Gelbpunkt:thread-stack-size-musl, r=jhpratt
fmease Aug 11, 2025
a66007d
Rollup merge of #144386 - camsteffen:imploftrait, r=fmease
fmease Aug 11, 2025
2135c96
Rollup merge of #144542 - sayantn:stabilize-sse4a-tbm, r=Amanieu,trav…
fmease Aug 11, 2025
e024688
Rollup merge of #144921 - lolbinarycat:rustdoc-intra-doc-gfm-141866, …
fmease Aug 11, 2025
d59b8f1
Rollup merge of #145025 - lolbinarycat:ci-tidy-spellcheck, r=Kobzol
fmease Aug 11, 2025
274b272
Rollup merge of #145155 - scrabsha:push-tkvwkolzooyq, r=jdonszelmann
fmease Aug 11, 2025
8eeac6d
Rollup merge of #145214 - notJoon:fix/enable-self-assignment, r=petro…
fmease Aug 11, 2025
07c6471
Rollup merge of #145216 - eval-exec:fix-145125-enum-rustdoc, r=fmease
fmease Aug 11, 2025
0ad15fd
Rollup merge of #145238 - estebank:attr-overhaul, r=jdonszelmann
fmease Aug 11, 2025
4102e73
Rollup merge of #145249 - Stypox:_span-to-_trace, r=joshtriplett
fmease Aug 11, 2025
6434c4b
Rollup merge of #145251 - tiif:support_trait, r=BoxyUwU
fmease Aug 11, 2025
b6171e5
Rollup merge of #145253 - Kobzol:pr-check-2-doc-stage-1, r=jieyouxu
fmease Aug 11, 2025
7f97c04
Rollup merge of #145260 - SabrinaJewson:vec-allocator-docs, r=dtolnay
fmease Aug 11, 2025
590eae8
Rollup merge of #145263 - rustbot:docs-update, r=ehuss
fmease Aug 11, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix even more typos
  • Loading branch information
lolbinarycat committed Aug 9, 2025
commit 715bbe0d0eee9680c85fc1031213dc83daffe6c9
6 changes: 3 additions & 3 deletions compiler/rustc_resolve/src/imports.rs
Original file line number Diff line number Diff line change
Expand Up @@ -870,7 +870,7 @@ impl<'ra, 'tcx> Resolver<'ra, 'tcx> {
}
ImportKind::Glob { .. } => {
// FIXME: Use mutable resolver directly as a hack, this should be an output of
// specualtive resolution.
// speculative resolution.
self.get_mut_unchecked().resolve_glob_import(import);
return 0;
}
Expand Down Expand Up @@ -907,7 +907,7 @@ impl<'ra, 'tcx> Resolver<'ra, 'tcx> {
// We need the `target`, `source` can be extracted.
let imported_binding = this.import(binding, import);
// FIXME: Use mutable resolver directly as a hack, this should be an output of
// specualtive resolution.
// speculative resolution.
this.get_mut_unchecked().define_binding_local(
parent,
target,
Expand All @@ -921,7 +921,7 @@ impl<'ra, 'tcx> Resolver<'ra, 'tcx> {
if target.name != kw::Underscore {
let key = BindingKey::new(target, ns);
// FIXME: Use mutable resolver directly as a hack, this should be an output of
// specualtive resolution.
// speculative resolution.
this.get_mut_unchecked().update_local_resolution(
parent,
key,
Expand Down
2 changes: 1 addition & 1 deletion library/std/src/sys/mod.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#![allow(unsafe_op_in_unsafe_fn)]

/// The configure builtins provides runtime support compiler-builtin features
/// which require dynamic intialization to work as expected, e.g. aarch64
/// which require dynamic initialization to work as expected, e.g. aarch64
/// outline-atomics.
mod configure_builtins;

Expand Down
2 changes: 1 addition & 1 deletion src/build_helper/src/util.rs
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ pub fn parse_gitmodules(target_dir: &Path) -> Vec<String> {
submodules_paths
}

/// If the given executible is installed with the given version, use that,
/// If the given executable is installed with the given version, use that,
/// otherwise install via cargo.
pub fn ensure_version_or_cargo_install(
build_dir: &Path,
Expand Down
2 changes: 1 addition & 1 deletion src/librustdoc/html/static/js/search.js
Original file line number Diff line number Diff line change
Expand Up @@ -3333,7 +3333,7 @@ class DocSearch {
}

// sort unstable items later
// FIXME: there is some doubt if this is the most effecient way to implement this.
// FIXME: there is some doubt if this is the most efficient way to implement this.
// alternative options include:
// * put is_unstable on each item when the index is built.
// increases memory usage but avoids a hashmap lookup.
Expand Down
Loading