about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2021-11-14 12:41:16 -0500
committerGitHub <noreply@github.com>2021-11-14 12:41:16 -0500
commit429e0b66a24399b5e6746cc8bff27921ecde7370 (patch)
tree4036f78902c624f9b3abd9c0e87a34d5d043dd94
parent36e198b97a0615df965df5fe88bb052bd1bc92b1 (diff)
downloadrust-429e0b66a24399b5e6746cc8bff27921ecde7370.tar.gz
rust-429e0b66a24399b5e6746cc8bff27921ecde7370.zip
Update CONTRIBUTING.md for the fact that Travis is no longer used
-rw-r--r--CONTRIBUTING.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index f9ba12d3a1b..9612fe871c6 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -15,7 +15,7 @@ SIMD can be quite complex, and even a "simple" issue can be huge. If an issue is
 
 ## CI
 
-We currently have 2 CI matrices through Travis CI and GitHub Actions that will automatically build and test your change in order to verify that `std::simd`'s portable API is, in fact, portable. If your change builds locally, but does not build on either, this is likely due to a platform-specific concern that your code has not addressed. Please consult the build logs and address the error, or ask for help if you need it.
+We currently use GitHub Actions which will automatically build and test your change in order to verify that `std::simd`'s portable API is, in fact, portable. If your change builds locally, but does not build in CI, this is likely due to a platform-specific concern that your code has not addressed. Please consult the build logs and address the error, or ask for help if you need it.
 
 ## Beyond stdsimd