Skip to content

Commit 81e5e52

Browse files
committed
updated readme with github status icon
1 parent accf3a8 commit 81e5e52

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Compile Time Regular Expressions v3
22

3-
[![Build Status](https://travis-ci.org/hanickadot/compile-time-regular-expressions.svg?branch=master)](https://travis-ci.org/hanickadot/compile-time-regular-expressions)
3+
[![Build Status](https://github.com/hanickadot/compile-time-regular-expressions/actions/workflows/tests.yml/badge.svg)](https://github.com/hanickadot/compile-time-regular-expressions/actions/workflows/tests.yml)
44

55
Fast compile-time regular expressions with support for matching/searching/capturing during compile-time or runtime.
66

@@ -268,7 +268,7 @@ int main() {
268268
using namespace std::literals;
269269
std::u8string_view original = u8"Tu es un génie"sv;
270270

271-
for (auto match : ctre::search_all<"\\p{Letter}+">(original))
271+
for (auto match: ctre::search_all<"\\p{Letter}+">(original))
272272
std::cout << cast_from_unicode(match) << std::endl;
273273
return 0;
274274
}

0 commit comments

Comments
 (0)