Skip to content

Commit

Permalink
Merge pull request #94 from QuantumManiac/cwijesek/fix-typo-lec03
Browse files Browse the repository at this point in the history
Fix typo in L03 slides and notes
  • Loading branch information
jzarnett authored Jan 26, 2024
2 parents 864dfab + 88e6cc5 commit aacef95
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lectures/L03-slides.tex
Original file line number Diff line number Diff line change
Expand Up @@ -504,7 +504,7 @@

\begin{lstlisting}[language=Rust]
pub trait FinalGrade {
fun final_grade(&self) -> f32;
fn final_grade(&self) -> f32;
}

impl FinalGrade for Enrolled_Student {
Expand Down
2 changes: 1 addition & 1 deletion lectures/L03.tex
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ \subsection*{Traits}

\begin{lstlisting}[language=Rust]
pub trait FinalGrade {
fun final_grade(&self) -> f32;
fn final_grade(&self) -> f32;
}

impl FinalGrade for Enrolled_Student {
Expand Down

0 comments on commit aacef95

Please sign in to comment.