Skip to content

Commit

Permalink
my name is aria desires
Browse files Browse the repository at this point in the history
  • Loading branch information
Gankra committed Jul 30, 2024
1 parent bec3afe commit 1b0b264
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion book.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[book]
title = "Learning Rust With Entirely Too Many Linked Lists"
author = "Alexis Beingessner"
author = "Aria Desires"
description = "Learning Rust With Entirely Too Many Linked Lists"

[build]
Expand Down
2 changes: 1 addition & 1 deletion license-MIT
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2015 Alexis Beingessner
Copyright (c) 2015 Aria Desires

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion lists/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[package]
name = "lists"
version = "0.1.0"
authors = ["ABeingessner"]
authors = ["ADesires"]
2 changes: 1 addition & 1 deletion src/first-pop.md
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ pub fn pop(&mut self) -> Option<i32> {

```text
> cargo build
Compiling lists v0.1.0 (/Users/ABeingessner/dev/temp/lists)
Compiling lists v0.1.0 (/Users/ADesires/dev/temp/lists)
error[E0507]: cannot move out of borrowed content
--> src/first.rs:35:29
|
Expand Down
6 changes: 3 additions & 3 deletions src/first-test.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ And we invoke it with `cargo test`.

```text
> cargo test
Compiling lists v0.1.0 (/Users/ABeingessner/dev/temp/lists)
Compiling lists v0.1.0 (/Users/ADesires/dev/temp/lists)
Finished dev [unoptimized + debuginfo] target(s) in 1.00s
Running /Users/ABeingessner/dev/lists/target/debug/deps/lists-86544f1d97438f1f
Running /Users/ADesires/dev/lists/target/debug/deps/lists-86544f1d97438f1f
running 1 test
test first::test::basics ... ok
Expand Down Expand Up @@ -110,7 +110,7 @@ warning: unused import: `super::List`
= note: #[warn(unused_imports)] on by default
Finished dev [unoptimized + debuginfo] target(s) in 0.43s
Running /Users/ABeingessner/dev/lists/target/debug/deps/lists-86544f1d97438f1f
Running /Users/ADesires/dev/lists/target/debug/deps/lists-86544f1d97438f1f
running 1 test
test first::test::basics ... ok
Expand Down
2 changes: 1 addition & 1 deletion src/fourth-iteration.md
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ fn next(&mut self) -> Option<Self::Item> {

```text
cargo build
Compiling lists v0.1.0 (/Users/ABeingessner/dev/temp/lists)
Compiling lists v0.1.0 (/Users/ADesires/dev/temp/lists)
error[E0521]: borrowed data escapes outside of closure
--> src/fourth.rs:159:13
|
Expand Down
4 changes: 2 additions & 2 deletions src/second-iter.md
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ impl<'a, T> Iterator for Iter<'a, T> {

```text
cargo build
Compiling lists v0.1.0 (/Users/ABeingessner/dev/temp/lists)
Compiling lists v0.1.0 (/Users/ADesires/dev/temp/lists)
error[E0515]: cannot return reference to local data `*node`
--> src/second.rs:77:43
|
Expand Down Expand Up @@ -392,7 +392,7 @@ impl<'a, T> Iterator for Iter<'a, T> {

```text
cargo build
Compiling lists v0.1.0 (/Users/ABeingessner/dev/temp/lists)
Compiling lists v0.1.0 (/Users/ADesires/dev/temp/lists)
error[E0308]: mismatched types
--> src/second.rs:77:22
|
Expand Down
4 changes: 2 additions & 2 deletions src/third-drop.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@ impl<T> Drop for List<T> {

```text
cargo test
Compiling lists v0.1.0 (/Users/ABeingessner/dev/too-many-lists/lists)
Compiling lists v0.1.0 (/Users/ADesires/dev/too-many-lists/lists)
Finished dev [unoptimized + debuginfo] target(s) in 1.10s
Running /Users/ABeingessner/dev/too-many-lists/lists/target/debug/deps/lists-86544f1d97438f1f
Running /Users/ADesires/dev/too-many-lists/lists/target/debug/deps/lists-86544f1d97438f1f
running 8 tests
test first::test::basics ... ok
Expand Down

0 comments on commit 1b0b264

Please sign in to comment.