From 5e4dcbbcc1753b44e7a8a8f77ee4af762fdb3877 Mon Sep 17 00:00:00 2001 From: Tyera Eulberg Date: Wed, 1 Jul 2020 11:20:44 -0600 Subject: [PATCH] Fix CI (#74) * Fix ci * Docs fix * Dir name --- .travis.yml | 4 ++-- ci/token-swap.sh | 2 +- token/src/option.rs | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 30ff91baf9f..7e735dfc43e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -29,5 +29,5 @@ jobs: include: - stage: "Test Programs" script: ./ci/memo.sh - script: ./ci/token.sh - script: ./ci/token.sh + - script: ./ci/token-swap.sh + - script: ./ci/token.sh diff --git a/ci/token-swap.sh b/ci/token-swap.sh index 4b2ecee36bb..62834b4461e 100755 --- a/ci/token-swap.sh +++ b/ci/token-swap.sh @@ -9,7 +9,7 @@ set -e ./do.sh build token-swap ./do.sh doc token-swap ./do.sh test token-swap - cc token/inc/token-swap.h -o token-swap/target/token-swap.gch + cc token-swap/inc/token-swap.h -o token-swap/target/token-swap.gch ) ( diff --git a/token/src/option.rs b/token/src/option.rs index df70c051ffe..914bb51c0ab 100644 --- a/token/src/option.rs +++ b/token/src/option.rs @@ -527,7 +527,7 @@ impl COption { /// let x: COption = COption::None; /// let y = COption::None; /// assert_eq!(x.or(y), COption::None); - /// ```ignore + /// ``` #[inline] pub fn or(self, optb: COption) -> COption { match self {