Skip to content

Commit

Permalink
fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
TOwInOK committed Sep 5, 2024
1 parent 6dac10b commit 1553ff4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,4 +60,4 @@ jobs:
context: .
file: Dockerfile
push: true
tags: ghcr.io/${{ github.repository }}/shuller:latest
tags: ghcr.io/${{ github.repository }}:latest
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ services:
shuller_bot:
image: shuller_bot:latest
environment:
- DS_TOCKEN=YOUR_TOKEN
- DS_TOKEN=YOUR_TOKEN
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ type Error = Box<dyn std::error::Error + Send + Sync>;

#[tokio::main]
async fn main() {
let token = std::env::var("DS_TOCKEN").expect("missing DISCORD_TOKEN");
let token = std::env::var("DS_TOKEN").expect("missing DISCORD_TOKEN");
tracing::subscriber::set_global_default(
FmtSubscriber::builder()
.with_max_level(Level::INFO)
Expand Down

0 comments on commit 1553ff4

Please sign in to comment.