Skip to content
This repository has been archived by the owner on Oct 24, 2024. It is now read-only.

Commit

Permalink
Fixing broken docs: URLs should be tagged as hyperlinks
Browse files Browse the repository at this point in the history
  • Loading branch information
porkbrain committed Sep 4, 2024
1 parent a20f7b7 commit 91f4fc3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion main_game_lib/src/rscn.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
//! See the wiki for current status of what's supported and what custom nodes
//! are available.
//!
//! TODO(https://github.com/porkbrain/dont-count-the-sheep/issues/235):
//! TODO(<https://github.com/porkbrain/dont-count-the-sheep/issues/235>):
//! Needs further refactor: separation of concerns between stages of
//! representations; lexing vs parsing; support for async spawning of scenes;
//! support for a signal when all textures are loaded
Expand Down
4 changes: 2 additions & 2 deletions main_game_lib/src/rscn/token.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//! TODO(https://github.com/porkbrain/dont-count-the-sheep/issues/235): Refactor
//! TODO(<https://github.com/porkbrain/dont-count-the-sheep/issues/235>): Refactor
//! parsing and lexing into separate modules.
mod colon;
Expand Down Expand Up @@ -29,7 +29,7 @@ pub(crate) fn parse(tscn: &str) -> State {
state
}

/// TODO(https://github.com/porkbrain/dont-count-the-sheep/issues/235): Lexing should be done separately from parsing.
/// TODO(<https://github.com/porkbrain/dont-count-the-sheep/issues/235>): Lexing should be done separately from parsing.
#[derive(Logos, Debug, PartialEq, Eq)]
#[logos(skip r"[\r\t\n\f,]+")]
enum TscnToken {
Expand Down

0 comments on commit 91f4fc3

Please sign in to comment.