Skip to content

Commit

Permalink
Fix CI (solana-labs#74)
Browse files Browse the repository at this point in the history
* Fix ci

* Docs fix

* Dir name
  • Loading branch information
CriesofCarrots authored Jul 1, 2020
1 parent fc7a808 commit 5e4dcbb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion ci/token-swap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
)

(
Expand Down
2 changes: 1 addition & 1 deletion token/src/option.rs
Original file line number Diff line number Diff line change
Expand Up @@ -527,7 +527,7 @@ impl<T> COption<T> {
/// let x: COption<u32> = COption::None;
/// let y = COption::None;
/// assert_eq!(x.or(y), COption::None);
/// ```ignore
/// ```
#[inline]
pub fn or(self, optb: COption<T>) -> COption<T> {
match self {
Expand Down

0 comments on commit 5e4dcbb

Please sign in to comment.